|
Vector clocks is an algorithm for generating a partial ordering of events in a distributed system and detecting causality violations. Just as in Lamport timestamps, interprocess messages contain the state of the sending process's logical clock. A vector clock of a system of ''N'' processes is an array/vector of ''N'' logical clocks, one clock per process; a local "smallest possible values" copy of the global clock-array is kept in each process, with the following rules for clock updates: * Initially all clocks are zero. * Each time a process experiences an internal event, it increments its own logical clock in the vector by one. * Each time a process prepares to send a message, it sends its entire vector along with the message being sent. * Each time a process receives a message, it increments its own logical clock in the vector by one and updates each element in its vector by taking the maximum of the value in its own vector clock and the value in the vector in the received message (for every element). The vector clocks algorithm was independently developed by Colin Fidge and Friedemann Mattern in 1988. ==Partial ordering property== Vector clocks allow for the partial causal ordering of events. Defining the following: * denotes the vector clock of event , and denotes the component of that clock for process . * * * In English: is less than , if and only if is less than or equal to for all process indices , and at least one of those relationships is strictly smaller (that is, ). * denotes that event happened before event . It is defined as: if , then Properties: * If , then * Antisymmetry: if , then ¬ * Transitivity: if and , then or if and , then Relation with other orders: * Let be the real time when event occurs. If , then * Let be the Lamport timestamp of event . If , then 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Vector clock」の詳細全文を読む スポンサード リンク
|